home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / CW MacMindy 1.4 / Examples / QD3D-Viewer / QD3D-Viewer Sources / QD3Viewer.r next >
Encoding:
Text File  |  1995-07-16  |  475 b   |  34 lines  |  [TEXT/CWIE]

  1. /*
  2.     QD3Viewer.r
  3.   */
  4.  
  5. #include <Types.r>
  6.  
  7. #define eConsoleApp 1
  8. #define eToolboxApp 2
  9.  
  10. type 'MCFG' {
  11.                 /* steve says, add a version number. */
  12.     integer;    /* type of application. */
  13. };
  14.  
  15. #if 1
  16. resource 'MCFG' (128, "Mindy Configuration") {
  17.     eToolboxApp
  18. };
  19. #endif
  20.  
  21. type 'OBJS' as 'STR#';
  22.  
  23. resource 'OBJS' (128, "Mindy Objects") {
  24.     {
  25.         "QD3ViewerLib.dbc",
  26.         "Toolbox.dbc",
  27.         "QD3DTypes.dbc",
  28.         "QD3DViewer.dbc",
  29.         "QD3DMath.dbc",
  30.         "QD3DMisc.dbc",
  31.         "QD3ViewerMain.dbc",
  32.     };
  33. };
  34.